home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / localize / localize.odl < prev    next >
Text File  |  1995-11-25  |  2KB  |  84 lines

  1. //=--------------------------------------------------------------------------=
  2. // Localize.ODL
  3. //=--------------------------------------------------------------------------=
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. //=--------------------------------------------------------------------------=
  11. //
  12. // ODL file for the control(s) and automation object(s) in this inproc server
  13. //
  14. #include <olectl.h>
  15. #include "dispids.h"
  16.  
  17. // can't include oaidl.h, so this will have to do
  18. //
  19. #define DISPID_NEWENUM -4
  20.  
  21.  
  22. //=--------------------------------------------------------------------------=
  23. // the libid for this type libray
  24. //
  25. [
  26.     uuid(1edce660-240a-11cf-9d53-00aa003c9cb6),
  27.     helpstring("Localize Control Library"),
  28.     lcid(0x0000),
  29.     version(1.0)
  30. ]
  31. library LocalizeObjects {
  32.  
  33.     // standard imports
  34.     //
  35.     importlib("STDOLE32.TLB");
  36.     importlib(STDTYPE_TLB);
  37.  
  38.     // primary dispatch interface for CLocalize control
  39.     //
  40.     [
  41.         uuid(200b0620-240a-11cf-9d53-00aa003c9cb6),
  42.     helpstring("Localize Control"),
  43.         hidden,
  44.     dual,
  45.     odl
  46.     ]
  47.     interface ILocalize : IDispatch {
  48.  
  49.         // properties
  50.     //
  51.  
  52.         // methods
  53.     //
  54.         [id(DISPID_ABOUTBOX)]
  55.             void AboutBox(void);
  56.     };
  57.  
  58.     // event interface for CLocalize controls ...
  59.     //
  60.     [
  61.         uuid(2140c700-240a-11cf-9d53-00aa003c9cb6),
  62.     helpstring("Event interface for Localize control"),
  63.     hidden
  64.     ]
  65.     dispinterface DLocalizeEvents {
  66.         properties:
  67.     methods:
  68.     };
  69.  
  70.     // coclass for CLocalize controls
  71.     //
  72.     [
  73.         uuid(22907880-240a-11cf-9d53-00aa003c9cb6),
  74.     helpstring("Localize control")
  75.     ]
  76.     coclass Localize {
  77.         [default]         interface ILocalize;
  78.     [default, source] dispinterface DLocalizeEvents;
  79.     };
  80. };
  81.  
  82.  
  83.  
  84.